home *** CD-ROM | disk | FTP | other *** search
/ .net (Turkey) 1998 March / .net Internet Dergisi - CD 5.iso / mac / netCD41 / DEMO16.DIR / 00096_Script_96 < prev    next >
Text File  |  1997-12-08  |  414b  |  18 lines

  1. on enterFrame
  2.   global pointCursor
  3.   repeat with n = 23 to 32
  4.     if rollover(n) then
  5.       if not the puppet of sprite n then
  6.         puppetSprite n, TRUE
  7.         set the cursor of sprite n to pointCursor
  8.         set the member of sprite n to the number of the member of sprite n +1
  9.       end if
  10.     else
  11.       puppetSprite n, FALSE
  12.     end if
  13.   end repeat
  14. end
  15.  
  16. on exitFrame
  17.   go to the frame
  18. end